home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 126-150 / disk_147 / src / version.c < prev    next >
Text File  |  1992-05-06  |  392b  |  21 lines

  1. /*
  2.  * This file contains the string that get written
  3.  * out by the emacs-version command.
  4.  */
  5.  
  6. #define TRUE    1    /* include "def.h" when things get more complicated */
  7.  
  8. char version[] = "Mg 2a (formerly MicroGnuEmacs)";
  9.  
  10. /*
  11.  * Display the version. All this does
  12.  * is copy the version string onto the echo line.
  13.  */
  14. /*ARGSUSED*/
  15. showversion(f, n)
  16. int f, n;
  17. {
  18.     ewprintf(version);
  19.     return TRUE;
  20. }
  21.